home *** CD-ROM | disk | FTP | other *** search
/ Inside Mac Games Volume 5 #3 / IMG 46 Vol 5-3.iso / More Goodies / More For Your Game / Realmz / Character Master Source / Nemesis Framework / NemesisHeaders.h < prev   
Text File  |  1996-07-03  |  1KB  |  59 lines

  1. //••••••••••••••••••••••••••••••••••••
  2. //    Includes all the nemesis header
  3. //    files and macheaders.
  4. //••••••••••••••••••••••••••••••••••••
  5.  
  6. #ifndef _NEMESISHEADERS_
  7.     #define _NEMESISHEADERS_
  8.  
  9. #include <MacHeaders.h>
  10.  
  11. #ifndef _N_SOUNDHELPER_
  12.     #include <SoundHelper.h>
  13. #endif
  14.  
  15. // Note: Not really necessary to include these #if's round the includes
  16. // 'cos they are in the headers themeselves, however it may speed things
  17. // up a tiny bit
  18. #ifndef _NEMESISERRORS_
  19.     #include <nemesis errors.h>
  20. #endif
  21. #ifndef _NEMESISEVENTS_
  22.     #include <nemesis events.h>
  23. #endif
  24. #ifndef _NEMESISFILES_
  25.     #include <nemesis files.h>
  26. #endif
  27. #ifndef _NEMESISMEMORY_
  28.     #include <nemesis memory.h>
  29. #endif
  30. #ifndef _NEMESISMENUS_
  31.     #include <nemesis menus.h>
  32. #endif
  33. #ifndef _NEMESISMISCUTILITIES_
  34.     #include <nemesis misc utilities.h>
  35. #endif
  36. #ifndef _NEMESISRESOURCES_
  37.     #include <nemesis resources.h>
  38. #endif
  39. #ifndef _NEMESISSTRINGS_
  40.     #include <nemesis strings.h>
  41. #endif
  42. #ifndef _NEMESISWINDOWS_
  43.     #include <nemesis windows.h>
  44. #endif
  45. #ifndef _NEMESISDIALOGS_
  46.     #include <nemesis dialogs.h>
  47. #endif
  48.  
  49. #ifndef _NEMESISDIALOGCLASS_
  50.     #include <nemesis dialog class.h>
  51. #endif
  52. #ifndef _NEMESISGLOBALCLASS_
  53.     #include <nemesis global class.h>
  54. #endif
  55. #ifndef _NEMESISCREDITSCROLLCLASS_
  56.     #include <nemesis credit scroll class.h>
  57. #endif
  58.  
  59. #endif // !_NEMESISHEADERS_